home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / surfbear / surfbe~1.h < prev    next >
C/C++ Source or Header  |  1995-11-28  |  1KB  |  58 lines

  1. // SurfBearDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSurfBearDlg dialog
  6.  
  7. class CSurfBearDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CSurfBearDlg(CWnd* pParent = NULL);    // standard constructor
  12.  
  13.    CString m_strServer ;
  14.    CString m_strPath ;
  15.  
  16.    CBitmapButton m_btnBitmapHelp ;
  17. // Dialog Data
  18.     //{{AFX_DATA(CSurfBearDlg)
  19.     enum { IDD = IDD_SURFBEAR_DIALOG };
  20.     CButton    m_btnAccess;
  21.     CButton    m_btnGoto;
  22.     CButton    m_btnClose;
  23.     CEdit    m_editBrowse;
  24.     CEdit    m_editAddress;
  25.     CAnimateCtrl    m_ctrlAnimate;
  26.     //}}AFX_DATA
  27.  
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CSurfBearDlg)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.    CInternetThread m_InternetThread ;
  37.  
  38.    // helper
  39.    void EnableUI(BOOL bEnable) ;
  40.    void SetEditBrowseSize(int cx, int cy) ;
  41.    // other
  42.    HICON m_hIcon;
  43.  
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CSurfBearDlg)
  46.     virtual BOOL OnInitDialog();
  47.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  48.     afx_msg void OnPaint();
  49.     afx_msg HCURSOR OnQueryDragIcon();
  50.     afx_msg void OnGotoBtn();
  51.     afx_msg void OnSize(UINT nType, int cx, int cy);
  52.    afx_msg LRESULT OnReadFileCompleted(WPARAM wParam, LPARAM lParam) ;
  53.     afx_msg void OnBtnAccess();
  54.       afx_msg void OnHelpAbout();
  55.     //}}AFX_MSG
  56.     DECLARE_MESSAGE_MAP()
  57. };
  58.